(Fforward_comment): Use type int for `stop', `count1', `out_charpos'
authorJohn Paul Wallington <jpw@pobox.com>
Sun, 9 Jul 2006 03:31:25 +0000 (03:31 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sun, 9 Jul 2006 03:31:25 +0000 (03:31 +0000)
and `out_bytepos' too; revert Stef's previous change.

src/syntax.c

index e95557d83aa480afa6a4f398de003cb02df1936e..9af4773a01b1babd8633479c154d9f0e59d7e6e1 100644 (file)
@@ -1994,14 +1994,14 @@ between them, return t; otherwise return nil.  */)
 {
   register int from;
   int from_byte;
-  register EMACS_INT stop;
+  register int stop;
   register int c, c1;
   register enum syntaxcode code;
   int comstyle = 0;        /* style of comment encountered */
   int comnested = 0;       /* whether the comment is nestable or not */
   int found;
-  EMACS_INT count1;
-  EMACS_INT out_charpos, out_bytepos;
+  int count1;
+  int out_charpos, out_bytepos;
   int dummy;
 
   CHECK_NUMBER (count);